home *** CD-ROM | disk | FTP | other *** search
- global initminv, initmaxv
-
- on mouseWithin
- if the mouseV < 168 then
- cursor([3, 4])
- set the locV of sprite 3 to the locV of sprite 3 + 3
- if the locV of sprite 3 > initminv then
- set the locV of sprite 3 to initminv
- end if
- else
- if the mouseV > 413 then
- cursor([5, 6])
- set the locV of sprite 3 to the locV of sprite 3 - 3
- if the locV of sprite 3 < initmaxv then
- set the locV of sprite 3 to initmaxv
- end if
- else
- cursor([1, 2])
- end if
- end if
- end
-
- on mouseUp
- cursor(0)
- go("SMALL")
- updateStage()
- end
-
- on mouseEnter me
- cursor([1, 2])
- end
-
- on mouseLeave me
- cursor(0)
- end
-